strings.Builder.buf (field)

22 uses

	strings (current package)
		builder.go#L23: 	buf []byte
		builder.go#L47: 	return unsafe.String(unsafe.SliceData(b.buf), len(b.buf))
		builder.go#L51: func (b *Builder) Len() int { return len(b.buf) }
		builder.go#L56: func (b *Builder) Cap() int { return cap(b.buf) }
		builder.go#L61: 	b.buf = nil
		builder.go#L67: 	buf := bytealg.MakeNoZero(2*cap(b.buf) + n)[:len(b.buf)]
		builder.go#L68: 	copy(buf, b.buf)
		builder.go#L69: 	b.buf = buf
		builder.go#L80: 	if cap(b.buf)-len(b.buf) < n {
		builder.go#L89: 	b.buf = append(b.buf, p...)
		builder.go#L97: 	b.buf = append(b.buf, c)
		builder.go#L105: 	n := len(b.buf)
		builder.go#L106: 	b.buf = utf8.AppendRune(b.buf, r)
		builder.go#L107: 	return len(b.buf) - n, nil
		builder.go#L114: 	b.buf = append(b.buf, s...)